Description: Print.
def print(*objs, sep=' ', end='\n', file=None, flush=False):
'''
Print objects
:param objs: Any number of objects to print
:param sep: Separator between objects, default is space
:param end: End character, default is newline
:param file: Target to print to (an object with a write(string) method), defaults to standard output
:param flush: Whether to forcibly flush the output buffer
'''
Example:
print("hello world")